home *** CD-ROM | disk | FTP | other *** search
- on mouseDown
- global givState
- if count(the questionSelectList of givState) < 1 then
- nothing()
- exit
- end if
- set clik to the clickOn
- PlaySoundWait("CLIK2.AIF")
- if the mode of givState = #edit then
- set the castNum of sprite clik to the number of cast "next button down"
- set tmp to the number of cast "next button down"
- else
- set the castNum of sprite clik to the number of cast "play mode next button down"
- set tmp to the number of cast "play mode next button down"
- end if
- updateStage()
- repeat while the stillDown
- nothing()
- end repeat
- if the mouseCast = tmp then
- if (the activeVideoMode of givState = #play) or (the activeVideoMode of givState = #pause) then
- pass()
- else
- if count(the questionSelectList of givState) > 0 then
- set ct to count(the questionSelectList of givState)
- set ptr to the selectListPlaybackPtr of givState
- set ptr to ptr + 1
- if ptr > ct then
- set ptr to 1
- end if
- set the selectListPlaybackPtr of givState to ptr
- SetMonitorPtr(givState, the activeMonitor of givState, getAt(the questionSelectList of givState, ptr))
- SetQuestionTextBoxHilite(getAt(the questionSelectList of givState, ptr))
- DisplayMonitor(the activeMonitor of givState)
- end if
- end if
- end if
- if the mode of givState = #edit then
- set the castNum of sprite clik to the number of cast "next button"
- else
- set the castNum of sprite clik to the number of cast "play mode next button"
- end if
- end
-